float f = 65.0;
byte b = byte(f); // Assign 65 to b
char c = 'E';
b = byte(c); // Assign 69 to b
f = 130.0;
b = byte(f); // Assign -126 to b